home *** CD-ROM | disk | FTP | other *** search
/ Money in the 90s / Money in the 90s - Windows (Laser Resources, Inc.)(1994).iso / si.zip / SMART2.BAT < prev    next >
DOS Batch File  |  1993-10-25  |  741b  |  34 lines

  1. echo off
  2. cd program
  3. if EXIST dproc.exe del dproc.exe
  4. systest 3.3 492 2000 25 15
  5. if ERRORLEVEL == 5 goto VideoError
  6. if ERRORLEVEL == 4 goto FilesRanOut
  7. if ERRORLEVEL == 3 goto DiskSpaceRanOut
  8. if ERRORLEVEL == 2 goto MemoryRanOut
  9. if ERRORLEVEL == 1 goto BadDOSVersion
  10. btrieve /M:32 /P:2048 /B:10 /F:10
  11. investor 8005 %1 %2 %3 %4 %5 %6 %7 %8 %9
  12. goto zexit
  13.  
  14. :BadDOSVersion
  15. if exist ..\e_dos.bat call ..\e_dos.bat
  16. goto zexit
  17. :FilesRanOut
  18. if exist ..\e_files.bat call ..\e_files.bat
  19. goto zexit
  20. :DiskSpaceRanOut
  21. if exist ..\e_disk.bat call ..\e_disk.bat
  22. goto zexit
  23. :MemoryRanOut
  24. if exist ..\e_mem.bat call ..\e_mem.bat
  25. goto zexit
  26. :VideoError
  27. if exist ..\e_video.bat call ..\e_video.bat
  28. goto zexit
  29.  
  30. :zexit
  31. cd..
  32.  
  33. :END
  34.